home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / site-packages / psyco / support.py < prev    next >
Text File  |  2006-03-29  |  6KB  |  188 lines

  1. ###########################################################################
  2. #  Psyco general support module.
  3. #   Copyright (C) 2001-2002  Armin Rigo et.al.
  4.  
  5. """Psyco general support module.
  6.  
  7. For internal use.
  8. """
  9. ###########################################################################
  10.  
  11. import sys, _psyco, __builtin__
  12.  
  13. error = _psyco.error
  14. class warning(Warning):
  15.     pass
  16.  
  17. _psyco.NoLocalsWarning = warning
  18.  
  19. def warn(msg):
  20.     from warnings import warn
  21.     warn(msg, warning, stacklevel=2)
  22.  
  23. #
  24. # Version checks
  25. #
  26. __version__ = 0x010400f0
  27. if _psyco.PSYVER != __version__:
  28.     raise error, "version mismatch between Psyco parts, reinstall it"
  29.  
  30.  
  31. VERSION_LIMITS = [0x02010000,   # 2.1
  32.                   0x02020000,   # 2.2
  33.                   0x02020200,   # 2.2.2
  34.                   0x02030000,   # 2.3
  35.                   0x02040000]   # 2.4
  36.  
  37. if ([v for v in VERSION_LIMITS if v <= sys.hexversion] !=
  38.     [v for v in VERSION_LIMITS if v <= _psyco.PYVER  ]):
  39.     if sys.hexversion < VERSION_LIMITS[0]:
  40.         warn("Psyco requires Python version 2.1 or later")
  41.     else:
  42.         warn("Psyco version does not match Python version. "
  43.              "Psyco must be updated or recompiled")
  44.  
  45. PYTHON_SUPPORT = hasattr(_psyco, 'turbo_code')
  46.  
  47.  
  48. if hasattr(_psyco, 'ALL_CHECKS') and hasattr(_psyco, 'VERBOSE_LEVEL'):
  49.     print >> sys.stderr, ('psyco: running in debugging mode on %s' %
  50.                           _psyco.PROCESSOR)
  51.  
  52.  
  53. ###########################################################################
  54. # sys._getframe() gives strange results on a mixed Psyco- and Python-style
  55. # stack frame. Psyco provides a replacement that partially emulates Python
  56. # frames from Psyco frames. The new sys._getframe() may return objects of
  57. # a custom "Psyco frame" type, which with Python >=2.2 is a subtype of the
  58. # normal frame type.
  59. #
  60. # The same problems require some other built-in functions to be replaced
  61. # as well. Note that the local variables are not available in any
  62. # dictionary with Psyco.
  63.  
  64.  
  65. class Frame:
  66.     pass
  67.  
  68.  
  69. class PythonFrame(Frame):
  70.  
  71.     def __init__(self, frame):
  72.         self.__dict__.update({
  73.             '_frame': frame,
  74.             })
  75.  
  76.     def __getattr__(self, attr):
  77.         if attr == 'f_back':
  78.             try:
  79.                 result = embedframe(_psyco.getframe(self._frame))
  80.             except ValueError:
  81.                 result = None
  82.             except error:
  83.                 warn("f_back is skipping dead Psyco frames")
  84.                 result = self._frame.f_back
  85.             self.__dict__['f_back'] = result
  86.             return result
  87.         else:
  88.             return getattr(self._frame, attr)
  89.  
  90.     def __setattr__(self, attr, value):
  91.         setattr(self._frame, attr, value)
  92.  
  93.     def __delattr__(self, attr):
  94.         delattr(self._frame, attr)
  95.  
  96.  
  97. class PsycoFrame(Frame):
  98.  
  99.     def __init__(self, tag):
  100.         self.__dict__.update({
  101.             '_tag'     : tag,
  102.             'f_code'   : tag[0],
  103.             'f_globals': tag[1],
  104.             })
  105.  
  106.     def __getattr__(self, attr):
  107.         if attr == 'f_back':
  108.             try:
  109.                 result = embedframe(_psyco.getframe(self._tag))
  110.             except ValueError:
  111.                 result = None
  112.         elif attr == 'f_lineno':
  113.             result = self.f_code.co_firstlineno  # better than nothing
  114.         elif attr == 'f_builtins':
  115.             result = self.f_globals['__builtins__']
  116.         elif attr == 'f_restricted':
  117.             result = self.f_builtins is not __builtins__
  118.         elif attr == 'f_locals':
  119.             raise AttributeError, ("local variables of functions run by Psyco "
  120.                                    "cannot be accessed in any way, sorry")
  121.         else:
  122.             raise AttributeError, ("emulated Psyco frames have "
  123.                                    "no '%s' attribute" % attr)
  124.         self.__dict__[attr] = result
  125.         return result
  126.  
  127.     def __setattr__(self, attr, value):
  128.         raise AttributeError, "Psyco frame objects are read-only"
  129.  
  130.     def __delattr__(self, attr):
  131.         if attr == 'f_trace':
  132.             # for bdb which relies on CPython frames exhibiting a slightly
  133.             # buggy behavior: you can 'del f.f_trace' as often as you like
  134.             # even without having set it previously.
  135.             return
  136.         raise AttributeError, "Psyco frame objects are read-only"
  137.  
  138.  
  139. def embedframe(result):
  140.     if type(result) is type(()):
  141.         return PsycoFrame(result)
  142.     else:
  143.         return PythonFrame(result)
  144.  
  145. def _getframe(depth=0):
  146.     """Return a frame object from the call stack. This is a replacement for
  147. sys._getframe() which is aware of Psyco frames.
  148.  
  149. The returned objects are instances of either PythonFrame or PsycoFrame
  150. instead of being real Python-level frame object, so that they can emulate
  151. the common attributes of frame objects.
  152.  
  153. The original sys._getframe() ignoring Psyco frames altogether is stored in
  154. psyco._getrealframe(). See also psyco._getemulframe()."""
  155.     # 'depth+1' to account for this _getframe() Python function
  156.     return embedframe(_psyco.getframe(depth+1))
  157.  
  158. def _getemulframe(depth=0):
  159.     """As _getframe(), but the returned objects are real Python frame objects
  160. emulating Psyco frames. Some of their attributes can be wrong or missing,
  161. however."""
  162.     # 'depth+1' to account for this _getemulframe() Python function
  163.     return _psyco.getframe(depth+1, 1)
  164.  
  165. def patch(name, module=__builtin__):
  166.     f = getattr(_psyco, name)
  167.     org = getattr(module, name)
  168.     if org is not f:
  169.         setattr(module, name, f)
  170.         setattr(_psyco, 'original_' + name, org)
  171.  
  172. _getrealframe = sys._getframe
  173. sys._getframe = _getframe
  174. patch('globals')
  175. patch('eval')
  176. patch('execfile')
  177. patch('locals')
  178. patch('vars')
  179. patch('dir')
  180. patch('input')
  181. _psyco.original_raw_input = raw_input
  182. __builtin__.__in_psyco__ = 0==1   # False
  183.  
  184. if hasattr(_psyco, 'compact'):
  185.     import kdictproxy
  186.     _psyco.compactdictproxy = kdictproxy.compactdictproxy
  187.